home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.12 Dec 94 / ThreadedSprocket / Interfaces / Futures.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-17  |  590 b   |  27 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ThreadFuturesInternal.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Written by:    xxx put writers here xxx
  7.  
  8.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  9.                 © 1993-1994 by Steve Sisak, all rights reserved.
  10.  
  11.     Change History (most recent first):
  12.  
  13.          <1>    10/14/93    bsp        first checked in
  14.  
  15. */
  16. #ifndef __FUTURES__
  17. #define __FUTURES__
  18.  
  19. #include <AppleEvents.h>
  20.  
  21. pascal OSErr    InitFutures(void);
  22. pascal OSErr    Ask(AppleEvent* question, AppleEvent* answer);
  23. pascal Boolean    IsFuture(AppleEvent* message);
  24. pascal OSErr    BlockUntilReal(AppleEvent* message);
  25.  
  26. #endif // __FUTURES__
  27.